home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Win Tutor 95
/
Win Tutor 95.iso
/
data.z
/
RUNTIME.QH
< prev
next >
Wrap
Text File
|
1995-06-08
|
4KB
|
110 lines
func "setup" ;
frame "" ;
statbut "st1" 1 "lpause" 6 "Pause the lesson" "pause.bmp" "none" ;
statbut "st2" 2 "pf_backup" 6 "Go back a bit" "backup.bmp" "none" ;
statbut "st3" 3 "pf_index" 6 "Lesson Menu" "menu.bmp" "none" ;
statbut "st4" 4 "dohelp" 6 "Get help" "help.bmp" "none" ;
statbut "st5" 5 "doexit" 6 "Return to Course Menu" "Exit.bmp" "none" ;
statbut "st6" 6 "pf_volume" 6 "Adjust audio volume" "vol.bmp" "none" ;
status "" 2 ;
return ;
func "lstub" ;
frame "" ;
pause ;
trect "stub1" 350 199 249 151 "This feature is not implemented./n//n/Click to continue..." $_trecttextcolor $_trectlspace $_trectlmargin $_trectrmargin $_trecttmargin $_trectbmargin $_trectindent $_trectffacename $_trectfpoint $_trectfweight $_trectfitalic $_trectfunderline $_trectfstrikeout $_trectcolor $_trectltcolor $_trectdkcolor $_trectborder $_trectlnthick $_trectcenter $_trectshadow $_trecteffect ;
any 9 ;
killk "stub1" ;
resume ;
return ;
func "lpause" ;
frame "" ;
if $_inexit == 0 ;
if $_framedisplay == 1 ;
killk "pstr" ;
text "pstr" 550 436 100 30 "c" . $_course . "l" . $_lesson . ":" . $_strip . ":" . $_framenum $gray $_textbgcolor $_textmode $_textlspace $_textffacename 10 $_textfweight $_textfitalic $_textfunderline $_textfstrikeout $_textcenter $_textshadow ;
endif ;
if $_audiostat eq "on" ;
pause ;
killbut "st1" ;
statbut "st1" 1 "lresume" 6 "Resume the lesson" "resume.bmp" "none" ;
gcfg "_paused" 1 ;
endif ;
endif ;
return ;
func "lresume" ;
frame "" ;
if $_inexit == 0 ;
resume ;
killk "pstr" ;
killbut "st1" ;
statbut "st1" 1 "lpause" 6 "Pause the lesson" "pause.bmp" "none" ;
gcfg "_paused" 0 ;
endif ;
return ;
func "stripinit" ;
frame "" ;
status "" 0 ;
if $_paused == 1 ;
killbut "st1" ;
statbut "st1" 1 "lpause" 6 "Pause the lesson" "pause.bmp" "none" ;
gcfg "_paused" 0 ;
endif ;
if $_isstatus == 0 ;
call "setup" "" "" "" "" "" "" "" "" "" ;
gcfg "_isstatus" 1 ;
endif ;
return ;
func "doexit" ;
frame "" ;
if $_inexit == 0 ;
call "lpause" "" "" "" "" "" "" "" "" "" ;
gcfg "_inexit" 1 ;
trect "exb1" 224 205 192 71 "Are you sure you want to exit?" 0 $_trectlspace $_trectlmargin $_trectrmargin $_trecttmargin $_trectbmargin $_trectindent "MS Sans Serif" 10 400 0 0 0 $_trectcolor $_trectltcolor $_trectdkcolor 5 $_trectlnthick $_trectcenter $_trectshadow $_trecteffect ;
button "ex1" 250 244 50 20 "yes.bmp" "none" "doexit1" 1 "" ;
button "ex2" 340 244 50 20 "no.bmp" "none" "exitret" 1 "" ;
any $leftbutton ;
label "exitret" ;
killk "exb1" ;
killbut "ex1,ex2" ;
redraw ;
dnow ;
gcfg "_inexit" 0 ;
call "lresume" "" "" "" "" "" "" "" "" "" ;
endif ;
return ;
strip "doexit1" ;
frame "" ;
killk "exb1" ;
killbut "ex1,ex2" ;
gcfg "_inexit" 0 ;
jump "lexit" ;
end ;
func "dohelp" ;
frame "" ;
call "lpause" "" "" "" "" "" "" "" "" "" ;
winhelp "wintutor.hlp" 1 7 ;
return ;
strip "lexit" ;
frame "" ;
gcfg "_background" $darkgray ;
gcfg "_novideo" 1 ;
vidclos ;
status "" 1 ;
imgclos ;
clr ;
redraw ;
trect "key1" 220 205 200 70 "Returning to the Course Menu. /n/Please wait..." 0 $_trectlspace $_trectlmargin $_trectrmargin $_trecttmargin $_trectbmargin $_trectindent "Ms Sans Serif" 10 400 $_trectfitalic $_trectfunderline $_trectfstrikeout $_trectcolor $_trectltcolor $_trectdkcolor 5 $_trectlnthick $_trectcenter $_trectshadow $_trecteffect ;
dnow ;
if $_course == 1 ;
jump "onelesson" ;
endif ;
if $_course == 5 ;
jump "onelesson" ;
endif ;
chain "front.qc" "course" . $_course 0 ;
jump "done1" ;
label "onelesson" ;
chain "front.qc" "curric" 0 ;
label "done1" ;
end ;